diff options
Diffstat (limited to 'src/pages/searchkey/[slug].jsx')
| -rw-r--r-- | src/pages/searchkey/[slug].jsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pages/searchkey/[slug].jsx b/src/pages/searchkey/[slug].jsx index a23f11b0..82179b7d 100644 --- a/src/pages/searchkey/[slug].jsx +++ b/src/pages/searchkey/[slug].jsx @@ -85,7 +85,9 @@ export default function FindPage() { /> {/* ✅ Breadcrumb (auto fetch via component) */} - {categoryId && <Breadcrumb categoryId={categoryId} />} + {categoryId && ( + <Breadcrumb categoryId={categoryId} currentLabel={readableSlug} /> + )} {/* ✅ Product result */} {query && <ProductSearch query={query} prefixUrl={route.asPath} />} |
